Skip to main content

Getting Started

Getting started to easily add ERC-4337 smart wallet support to your application.

1. Smart Wallet Factory Contract

Deployable via the explore page or build your own ERC 4337 compatible factory contract using the Solidity SDK.

Choose the right smart wallet setup for your app. thirdweb offers the following three different kinds of smart wallets:

Account setupDynamicAccount setupManagedAccount setup
UpgradeabilityNon-upgradeableAccount upgrades controlled locally by account admin.Account upgrades controlled centrally by account factory admin.
User personaDeveloper wants to issue simple smart wallets to their users. They do not anticipate that users wallets will need any feature upgrades.Developer wants to issue smart wallets to their users. They do anticipate feature upgrades to user wallets but do not want to push upgrades to user wallets without consent.Developer wants to issue smart wallets to their users. They do anticipate feature upgrades to user wallets, and want to push upgrades to user wallets for seamless/invisible UX for upgrades.

Supported chains

With a thirdweb API key, you get access to bundler and paymaster infrastructure on the following chains:

View supported chains
  • Polygon
  • Optimism
  • Base
  • Arbitrum
  • Linea
  • Goerli
  • Sepolia
  • Mumbai
  • Base Goerli
  • Optimism Goerli
  • Arbitrum Goerli
  • Linea Testnet
  • Celo Alfajores Testnet

To support a chain not listed, contact us.

2. An API key

You will require an API key to use thirdweb's infrastructure services such as the bundler and paymaster.

Obtain an API key from the thirdweb dashboard Settings page.

The API key lets you access thirdweb's bundler and paymaster infrastructure, which is required for the smart wallet to operate and optionally enable gasless transactions.

The API key will need to have the following settings:

  • smart wallet as an enabled service
  • The contracts that the smart wallet will interact with must be added to the "Destination Contracts" list. Learn more here

Learn more about creating an API key and restricting which contracts the smart wallet can interact with here.

3. Connecting & Creating Smart Wallets in an Application

Use the following code to integrate smart wallets into your apps. This will handle:

  • Connecting your users to their smart wallet based of their personal wallet (can be any wallet, including email or local wallets).
  • Automatically deploy the individual account contracts for your users when they do their first onchain transaction.
  • Handle all transaction gas costs via the thirdweb paymaster.
  • Select your deployed account factory and client ID to get a fully functional code snippet.
import { LocalWallet, SmartWallet } from "@thirdweb-dev/wallets";
// First, connect the personal wallet, which can be any wallet (metamask, walletconnect, etc.)
// Here we're just generating a new local wallet which can be saved later
const personalWallet = new LocalWallet();
await personalWallet.generate();
// Setup the Smart Wallet configuration
const config = {
chain: "goerli", // the chain where your smart wallet will be or is deployed
factoryAddress: "0x...", // your own deployed account factory address
clientId: "YOUR_CLIENT_ID", // or use secretKey for backend/node scripts
gasless: true, // enable or disable gasless transactions
};
// Then, connect the Smart wallet
const wallet = new SmartWallet(config);
await wallet.connect({
personalWallet,
});

4. Using a Template

Clone these templates to quickly deploy Smart Wallets and connect to them.